home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- global nIniVideo, nFinVideo, nCursor2, nMask2, nCursor3, nMask3
- if (the mouseV >= 345) and (the mouseH >= -3) and (the mouseV <= 480) and (the mouseH <= 137) then
- set the movieRate of sprite 2 to 0
- else
- set the movieRate of sprite 2 to 1
- end if
- if (the mouseV >= 132) and (the mouseH >= 352) and (the mouseV <= 168) and (the mouseH <= 411) then
- cursor([nCursor2, nMask2])
- else
- if (the mouseV >= 176) and (the mouseH >= 352) and (the mouseV <= 212) and (the mouseH <= 411) then
- cursor([nCursor3, nMask3])
- else
- cursor(-1)
- end if
- end if
- if the movieTime of sprite 2 > (nFinVideo - 15) then
- arriba()
- else
- rollboton()
- end if
- go(the frame)
- end
-
- on mouseUp
- if (the mouseV >= 132) and (the mouseH >= 352) and (the mouseV <= 168) and (the mouseH <= 411) then
- arriba()
- else
- if (the mouseV >= 176) and (the mouseH >= 352) and (the mouseV <= 212) and (the mouseH <= 411) then
- abajo()
- end if
- end if
- end
-
- on arriba
- global nStrip, nIniVideo, nFinVideo
- case nStrip of
- 1:
- set nIniVideo to 300
- set nFinVideo to 9360
- 2:
- set nIniVideo to 19050
- set nFinVideo to 28100
- 3:
- set nIniVideo to 37755
- set nFinVideo to 46825
- 4:
- set nIniVideo to 56490
- set nFinVideo to 65555
- 5:
- set nIniVideo to 75210
- set nFinVideo to 84280
- 6:
- set nIniVideo to 93945
- set nFinVideo to 103005
- 7:
- set nIniVideo to 112675
- set nFinVideo to 121810
- end case
- cursor(-1)
- set nIniVideo to nIniVideo + 39300
- set nFinVideo to nFinVideo + 39300
- go("stripP")
- end
-
- on abajo
- global nStrip, nIniVideo, nFinVideo
- case nStrip of
- 1:
- set nIniVideo to 9660
- set nFinVideo to 18755
- 2:
- set nIniVideo to 28400
- set nFinVideo to 37450
- 3:
- set nIniVideo to 47125
- set nFinVideo to 56200
- 4:
- set nIniVideo to 65855
- set nFinVideo to 74910
- 5:
- set nIniVideo to 84580
- set nFinVideo to 93650
- 6:
- set nIniVideo to 103305
- set nFinVideo to 112375
- 7:
- set nIniVideo to 122110
- set nFinVideo to 131430
- end case
- cursor(-1)
- set nIniVideo to nIniVideo + 39300
- set nFinVideo to nFinVideo + 39300
- go("stripP")
- end
-